From: Michael Albinus Date: Fri, 2 Oct 2009 13:27:29 +0000 (+0000) Subject: * simple.el (start-file-process): Say in the doc-string, that file X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10117 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6eddc093102930a35a5c7664ff47ca70b3e19cac;p=emacs.git * simple.el (start-file-process): Say in the doc-string, that file handlers might not support pty association, if PROGRAM is nil. --- diff --git a/lisp/simple.el b/lisp/simple.el index b77429ebd20..aa8ee15105b 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -2541,7 +2541,8 @@ In the latter case, the local part of `default-directory' becomes the working directory of the process. PROGRAM and PROGRAM-ARGS might be file names. They are not -objects of file handler invocation." +objects of file handler invocation. File handlers might not +support pty association, if PROGRAM is nil." (let ((fh (find-file-name-handler default-directory 'start-file-process))) (if fh (apply fh 'start-file-process name buffer program program-args) (apply 'start-process name buffer program program-args))))